We were not drawing the content background in the titlebar
area when fullscreen, and were still treating clicks there
as if they were on the titlebar.
return i;
}
- if (priv->title_box != NULL)
+ if (priv->title_box != NULL && gtk_widget_get_visible (priv->title_box))
{
gtk_widget_get_allocation (priv->title_box, &allocation);
if (allocation.x <= x && allocation.x + allocation.width > x &&
gtk_style_context_restore (context);
}
- if (priv->title_box)
+ if (priv->title_box && gtk_widget_get_visible (priv->title_box))
title_height = gtk_widget_get_allocated_height (priv->title_box);
else
title_height = 0;